b7d9ee1470fb85fc3c6aec70c5fc6817d2648b6f,kieker-tools/test/kieker/test/tools/junit/writeRead/filesystem/AsciiWriterReaderTest.java,AsciiWriterReaderTest,testUncompressedAsciiCommunication,#,57
Before Change
@Test
public void testUncompressedAsciiCommunication() throws Exception {
this.testAsciiCommunication(false);
}
@Test
After Change
@Test
public void testUncompressedAsciiCommunication() throws Exception {
// 1. define records to be triggered by the test probe
final List<IMonitoringRecord> records = TEST_DATA_REPOSITORY.newTestRecords();
final List<IMonitoringRecord> analyzedRecords = this.testAsciiCommunication(records, false);
// 8. compare actual and expected records
Assert.assertThat(analyzedRecords, CoreMatchers.is(CoreMatchers.equalTo(records)));